home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / amiexpress / source / ae / code / ax3.00 / str_save.c < prev    next >
Encoding:
C/C++ Source or Header  |  1980-01-03  |  209 b   |  15 lines

  1. /* str_save.c */
  2. #include "bbs.h"
  3.  
  4. char *str_save(char *str)
  5. {
  6.  char *s;
  7.  
  8.  if(!(s = malloc(strlen(str)+1))) {
  9.      ErrorLog("str_save error: str_save error");
  10.      return(NL);
  11.  }
  12.  strcpy(s,str);
  13.  return(s);
  14. }
  15.